home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / stk110 / spredsrc.com / SPREDFIO.H < prev    next >
Text File  |  1991-02-25  |  1KB  |  34 lines

  1. /**********************************************************************
  2. * spredfio.h
  3. * The sprite editor sprite data file IO
  4. **********************************************************************
  5.                     This file is part of
  6.  
  7.           STK -- The sprite toolkit -- version 1.1
  8.  
  9.               Copyright (C) Jari Karjala 1991
  10.  
  11. The sprite toolkit (STK) is a FreeWare toolkit for creating high
  12. resolution sprite graphics with PCompatible hardware. This toolkit 
  13. is provided as is without any warranty or such thing. See the file
  14. COPYING for further information.
  15.  
  16. **********************************************************************
  17. **********************************************************************/
  18.  
  19. /**********************************************************************
  20. * Load the sprite sdp->name. If sdp->h and sdp->w were non-zero
  21. * they are preserved, otherwise the read values are used.
  22. * Return: 0 if no errors, negative otherwise
  23. *           (-1 fopen, -2 fread, -3 fclose error)
  24. **********************************************************************/
  25. int load_sprite(SPRED_DATA *sdp);
  26.  
  27. /**********************************************************************
  28. * Save the given sprite.
  29. * Return: 0 if no errors, negative otherwise
  30. *           (-1 fopen, -2 fwrite, -3 fclose error)
  31. **********************************************************************/
  32. int save_sprite(SPRED_DATA *sdp);
  33.